We don't actually need Internet access, so this is OK.
* debian/test.sh: Unexport HTTP proxy variables for build-time tests
too
+ * Make build-time test failures fatal if they fail at least twice
+ out of 5 tries (previously they had to fail at least 3 times)
-- Simon McVittie <smcv@debian.org> Tue, 03 Oct 2017 19:14:14 +0100
# There are several race conditions that cause intermittent failures.
# They are not actually a regression - we've just been luckier in the
# past - so let newer versions build reliably.
-if [ "$failed" -gt 2 ]; then
+if [ "$failed" -gt 1 ]; then
echo "Failed $failed out of $try_tests test runs; that seems bad"
exit 1
elif [ "$failed" -gt 0 ]; then